home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / StatusView.h < prev    next >
Encoding:
C/C++ Source or Header  |  2011-11-06  |  2.4 KB  |  79 lines

  1. // FileZilla Server - a Windows ftp server
  2.  
  3. // Copyright (C) 2002-2004 - Tim Kosse <tim.kosse@gmx.de>
  4.  
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9.  
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14.  
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  
  19. #if !defined(AFX_STATUSView_H__7B174A5E_3D67_4C34_A7B0_A1B3F05BF18C__INCLUDED_)
  20. #define AFX_STATUSView_H__7B174A5E_3D67_4C34_A7B0_A1B3F05BF18C__INCLUDED_
  21.  
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. // StatusView.h : Header-Datei
  26. //
  27.  
  28. /////////////////////////////////////////////////////////////////////////////
  29. // Ansicht CStatusView 
  30. class CStatusCtrl;
  31.  
  32. class CStatusView : public CView
  33. {
  34. protected:
  35.     CStatusView();           // Dynamische Erstellung verwendet geschⁿtzten Konstruktor
  36.     DECLARE_DYNCREATE(CStatusView)
  37.  
  38. // Attribute
  39. public:
  40.  
  41. // Operationen
  42. public:
  43.     void ShowStatus(LPCTSTR status, int type);
  44.  
  45. // ▄berschreibungen
  46.     // Vom Klassen-Assistenten generierte virtuelle Funktionsⁿberschreibungen
  47.     //{{AFX_VIRTUAL(CStatusView)
  48.     protected:
  49.     virtual void OnDraw(CDC* pDC);
  50.     //}}AFX_VIRTUAL
  51.  
  52. // Implementierung
  53. protected:
  54.     virtual ~CStatusView();
  55. #ifdef _DEBUG
  56.     virtual void AssertValid() const;
  57.     virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59.  
  60.     // Generierte Nachrichtenzuordnungsfunktionen
  61. protected:
  62.     CStatusCtrl *m_pStatusCtrl;
  63.  
  64.     //{{AFX_MSG(CStatusView)
  65.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66.     afx_msg void OnSize(UINT nType, int cx, int cy);
  67.     //}}AFX_MSG
  68.     DECLARE_MESSAGE_MAP()
  69. public:
  70.     afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  71. };
  72.  
  73. /////////////////////////////////////////////////////////////////////////////
  74.  
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Visual C++ fⁿgt unmittelbar vor der vorhergehenden Zeile zusΣtzliche Deklarationen ein.
  77.  
  78. #endif // AFX_STATUSView_H__7B174A5E_3D67_4C34_A7B0_A1B3F05BF18C__INCLUDED_
  79.